home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / MEMSZ312.ZIP / SOURCE.ZIP / THREAD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-24  |  616 b   |  17 lines

  1. /******************************************************************* THREAD.H
  2.  *                                                                          *
  3.  *                       Thread Starter Function                            *
  4.  *                                                                          *
  5.  ****************************************************************************/
  6.  
  7. #ifndef THREAD_H
  8. #define THREAD_H
  9.  
  10. #define INCL_BASE
  11. #define INCL_PM
  12. #include <os2.h>
  13.  
  14. extern TID StartThread ( char *Name, void(*Function)(void*), int StackSize, void *Parameter, int Priority=0 ) ;
  15.  
  16. #endif
  17.